home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / grafik / raytracing / rayshade-4.0.6.3 / inetray / waitpid.c < prev   
C/C++ Source or Header  |  1993-08-17  |  510b  |  16 lines

  1. /*======================================================================
  2.                     W A I T P I D . C 
  3.                     doc: Tue Aug 17 08:39:11 1993
  4.                     dlm: Tue Aug 17 08:39:11 1993
  5.                     (c) 1993 ant@bernina.ethz.ch
  6.                     uE-Info: 8 0 NIL 0 0 72 0 2 8 ofnI
  7. ======================================================================*/
  8.  
  9. #include <stdio.h>
  10.  
  11. waitpid(pid,statusp,options)
  12. int pid,*statusp,options;
  13. {
  14.     return wait4(pid,statusp,options,NULL);
  15. }
  16.